Hey everyone!
I just wrote my first Neovim plugin ever, so please forgive any rough edges. I'm very new to plugin development and not sure how "mature" this is yet. But I wanted to share it in case someone else finds it useful.
I really enjoy using oil.nvim for my workflow, but one feature I missed from Neo-tree was its great yank path menu (Y → choose full path / relative path / filename / etc.). I often need to copy different variants of a file path depending on the situation (full path, project path, home-relative, basename, …).
So I built a tiny plugin that provides just that feature, without needing Neo-tree, and it works inside Oil buffers too.
Note that this is mostly something...
Hey everyone!
I just wrote my first Neovim plugin ever, so please forgive any rough edges. I'm very new to plugin development and not sure how "mature" this is yet. But I wanted to share it in case someone else finds it useful.
I really enjoy using oil.nvim for my workflow, but one feature I missed from Neo-tree was its great yank path menu (Y → choose full path / relative path / filename / etc.). I often need to copy different variants of a file path depending on the situation (full path, project path, home-relative, basename, …).
So I built a tiny plugin that provides just that feature, without needing Neo-tree, and it works inside Oil buffers too.
Note that this is mostly something I made for myself, and I'm sure there are smarter, more established, or similar workflows out there. I'm not trying to advertise it as "the better option" - just sharing in case anyone else wanted a very minimal, Oil-compatible way to yank various file path formats.
Repo: [https://github.com/ywpkwon/yank-path.nvim]()
Thanks, and happy to hear feedback or suggestions (or warnings) from people who know more about plugin development than I do!